home *** CD-ROM | disk | FTP | other *** search
/ C++ für Kids / C++ for kids.iso / Buch / Bild1.h < prev    next >
C/C++ Source or Header  |  1999-01-04  |  1KB  |  36 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef Bild1H
  3. #define Bild1H
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include "Movie2.h"
  10. #include <vcl\ExtCtrls.hpp>
  11. #include <vcl\Dialogs.hpp>
  12. #include <vcl\Menus.hpp>
  13. //---------------------------------------------------------------------------
  14. class TForm1 : public TForm
  15. {
  16. __published:    // IDE-verwaltete Komponenten
  17.     TOpenDialog *OpenDialog1;
  18.     TMovie *Movie1;
  19.     TBevel *Bevel1;
  20.     TPopupMenu *PopupMenu1;
  21.     TMenuItem *Oeffnen1;
  22.     TButton *Button1;
  23.     void __fastcall FormCreate(TObject *Sender);
  24.  
  25.     void __fastcall Oeffnen1Click(TObject *Sender);
  26.     
  27.     void __fastcall Button1Click(TObject *Sender);
  28. private:    // Benutzer-Deklarationen
  29. public:        // Benutzer-Deklarationen
  30.     __fastcall TForm1(TComponent* Owner);
  31. };
  32. //---------------------------------------------------------------------------
  33. extern TForm1 *Form1;
  34. //---------------------------------------------------------------------------
  35. #endif
  36.